home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / games / seahaven / Imakefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  498 b   |  15 lines

  1. OBJS = main.o util.o card.o cardbitmaps.o stack.o score.o auto.o 
  2. SRCS = main.C util.C card.C cardbitmaps.C stack.C score.C auto.C 
  3. LDLIBS = $(XLIB)
  4.  
  5. /* Make C++ work correctly.  This works for AT&T cfront; it will need to be */
  6. /* tweaked to work with g++. */
  7. CPLUSPLUS = CC
  8. CC = $(CPLUSPLUS)        /* So that linking works right */
  9. INCLUDES = -I/usr/include/CC    /* So that make depend works right */
  10. .SUFFIXES: $(.SUFFIXES) .C
  11. .C.o: $*.C
  12.     $(CPLUSPLUS) -c $(CFLAGS) $*.C
  13.  
  14. ComplexProgramTarget(seahaven)
  15.